home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / stepp000.swf / scripts / DefineSprite_2557 / frame_10 / DoAction.as
Text File  |  2008-11-12  |  515b  |  25 lines

  1. if(_root.CacheCraque.hitTest(_root.Portail.Feu.FeuParti.FeuExplose))
  2. {
  3.    set("/Variables:NbFeuTouche",eval("/Variables:NbFeuTouche") + 1);
  4.    if(eval("/Variables:NbFeuTouche") == 4)
  5.    {
  6.       tellTarget("_root.Portail")
  7.       {
  8.          gotoAndStop("Explose");
  9.          play();
  10.       }
  11.    }
  12.    else
  13.    {
  14.       tellTarget("_root.Sons")
  15.       {
  16.          gotoAndStop("SndCraque");
  17.          play();
  18.       }
  19.       tellTarget("_root.Portail.Craque")
  20.       {
  21.          nextFrame();
  22.       }
  23.    }
  24. }
  25.